/* =========================================
   INVESTMENT STRATEGY SECTION
========================================= */

.investment-section {
    padding: 120px 80px;
    background: linear-gradient(to bottom, #f8f9fb, #ffffff);
    position: relative;
    overflow: hidden;
}

.investment-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* =========================================
   MAIN HEADINGS
========================================= */

.investment-container h1 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 700;
    color: #d4a017;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.investment-container h2 {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #0c2340;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* =========================================
   INTRO TEXT
========================================= */

.intro-text {
    max-width: 1000px;
    margin: 0 auto 80px;
    text-align: center;
}

.intro-text p {
    font-size: 17px;
    line-height: 2;
    color: #555;
    margin-bottom: 25px;
}

/* =========================================
   TWO COLUMN LAYOUT
========================================= */

.two-column-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 35px;
    align-items: stretch;
}

/* =========================================
   CONTENT BOXES
========================================= */

.content-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04),
        0 20px 50px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(212, 160, 23, 0.08);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;

}

.content-box:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.06),
        0 30px 60px rgba(0, 0, 0, 0.05);
}

/* BOX TITLE */

.content-box h3 {
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    color: #d4a017;
    margin-bottom: 22px;
    line-height: 1.4;
    position: relative;
}

.content-box h3::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #d4a017;
    border-radius: 50px;
    margin-top: 10px;
}

/* BOX TEXT */

.content-box p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

/* LIST STYLING */

.content-box ul {
    padding-left: 22px;
    margin-top: 15px;
}

.content-box ul li {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 12px;
}

.content-box ul li::marker {
    color: #d4a017;
    font-size: 18px;
}

/* =========================================
   DISCLAIMER BOX
========================================= */

.disclaimer-box {
    background: linear-gradient(135deg, #fff9ec, #fff4dd);
    padding: 50px;
    border-left: 6px solid #d4a017;
    border-radius: 20px;
    margin-top: 50px;
    box-shadow:
        0 10px 30px rgba(212, 160, 23, 0.08);
}

.disclaimer-box h3 {
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    color: #c0392b;
    margin-bottom: 25px;
    line-height: 1.4;
}

.disclaimer-box p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}

.disclaimer-box strong {
    color: #0c2340;
    font-weight: 600;
}

/* =========================================
   ANIMATIONS
========================================= */

.content-box,
.disclaimer-box {
    transition: all 0.4s ease;
}

.disclaimer-box:hover {
    transform: translateY(-4px);
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .investment-section {
        padding: 90px 40px;
    }

    .investment-container h1 {
        font-size: 46px;
    }

    .investment-container h2 {
        font-size: 22px;
    }

    .two-column-row {
        gap: 25px;
    }

    .content-box {
        padding: 30px;
    }

    .content-box h3 {
        font-size: 24px;
    }

    .disclaimer-box {
        padding: 35px;
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .investment-section {
        padding: 70px 20px;
    }

    .investment-container h1 {
        font-size: 34px;
    }

    .investment-container h2 {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .intro-text {
        margin-bottom: 50px;
    }

    .intro-text p {
        font-size: 15px;
        line-height: 1.8;
    }

    .two-column-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content-box {
        padding: 22px;
        border-radius: 16px;
    }

    .content-box h3 {
        font-size: 22px;
    }

    .content-box p,
    .content-box ul li {
        font-size: 15px;
        line-height: 1.8;
    }

    .disclaimer-box {
        padding: 25px;
        border-radius: 16px;
    }

    .disclaimer-box h3 {
        font-size: 22px;
    }

    .disclaimer-box p {
        font-size: 15px;
    }
}

/* =========================================
   SMALL DEVICES
========================================= */

@media (max-width: 480px) {

    .investment-container h1 {
        font-size: 28px;
    }

    .investment-container h2 {
        font-size: 16px;
        line-height: 1.6;
    }

    .content-box h3 {
        font-size: 20px;
    }

    .content-box {
        padding: 20px;
    }

    .disclaimer-box {
        padding: 20px;
    }
}